home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form4
- Caption = "LARGE mode"
- ClientHeight = 3195
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 4680
- LinkTopic = "Form4"
- ScaleHeight = 8595
- ScaleWidth = 11880
- StartUpPosition = 3 'Windows Default
- WindowState = 2 'Maximized
- Begin VB.CommandButton Command1
- Caption = "Back to compact mode"
- Height = 255
- Left = 0
- TabIndex = 1
- Top = 0
- Width = 11775
- End
- Begin VB.TextBox Text1
- Height = 8295
- Left = 0
- MultiLine = -1 'True
- TabIndex = 0
- Top = 240
- Width = 11775
- End
- Attribute VB_Name = "Form4"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- If Form1.Label3.Caption = "TEXT 1" Then Form1.Text1.Text = Form4.Text1.Text
- If Form1.Label3.Caption = "TEXT 2" Then Form1.Text2.Text = Form4.Text1.Text
- If Form1.Label3.Caption = "TEXT 3" Then Form1.Text3.Text = Form4.Text1.Text
- If Form1.Label3.Caption = "TEXT 4" Then Form1.Text4.Text = Form4.Text1.Text
- If Form1.Label3.Caption = "TEXT 5" Then Form1.Text5.Text = Form4.Text1.Text
- If Form1.Label3.Caption = "TEXT 6" Then Form1.Text6.Text = Form4.Text1.Text
- If Form1.Label3.Caption = "TEXT 7" Then Form1.Text7.Text = Form4.Text1.Text
- Unload Me
- End Sub
-